home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJINC106.ARJ / AR.H < prev    next >
C/C++ Source or Header  |  1992-03-09  |  857b  |  33 lines

  1. /*
  2. ** Copyright (C) 1991 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954
  3. **
  4. ** This file is distributed under the terms listed in the document
  5. ** "copying.dj", available from DJ Delorie at the address above.
  6. ** A copy of "copying.dj" should accompany this file; if not, a copy
  7. ** should be available from where this file was obtained.  This file
  8. ** may not be distributed without a verbatim copy of "copying.dj".
  9. **
  10. ** This file is distributed WITHOUT ANY WARRANTY; without even the implied
  11. ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. */
  13.  
  14. #ifndef _AR_H_
  15. #define _AR_H_
  16.  
  17. #define ARMAG "!<arch>\n"
  18. #define SARMAG 8
  19.  
  20. #define ARFMAG "`\n"
  21.  
  22. struct ar_hdr {
  23.   char ar_name[16];
  24.   char ar_date[12];
  25.   char ar_uid[6];
  26.   char ar_gid[6];
  27.   char ar_mode[8];
  28.   char ar_size[10];
  29.   char ar_fmag[2];
  30. };
  31.  
  32. #endif
  33.